xref: /haiku/src/kits/support/Flattenable.cpp (revision d5cd5d63ff0ad395989db6cf4841a64d5b545d1d)
1 // Quick and dirty implementation of the BFlattenable class.
2 // Just here to be able to compile and test BPath.
3 // To be replaced by the OpenBeOS version to be provided by the IK Team.
4 
5 #include <stdio.h>
6 
7 #include <Flattenable.h>
8 
9 #ifdef USE_OPENBEOS_NAMESPACE
10 namespace OpenBeOS {
11 #endif
12 
13 // AllowsTypeCode
14 bool
15 BFlattenable::AllowsTypeCode(type_code code) const
16 {
17 	return (TypeCode() == code);
18 }
19 
20 // destructor
21 BFlattenable::~BFlattenable()
22 {
23 }
24 
25 
26 void BFlattenable::_ReservedFlattenable1() {}
27 void BFlattenable::_ReservedFlattenable2() {}
28 void BFlattenable::_ReservedFlattenable3() {}
29 
30 
31 #ifdef USE_OPENBEOS_NAMESPACE
32 }
33 #endif
34