root/ossieparser/trunk/InstantiationProperty.h @ 10

Revision 10, 0.6 KB (checked in by balister, 9 years ago)

Initial import

Line 
1#ifndef INSTANTIATIONPROPERTY_H
2#define INSTANTIATIONPROPERTY_H
3
4#include "ossieparser.h"
5
6#include "ace\os.h"
7
8class OSSIEPARSER_API InstantiationProperty
9{
10private:
11        char* id;
12
13        char* value;
14
15public:
16        InstantiationProperty();
17       
18        InstantiationProperty( const char* _id, const char* _value);
19
20        InstantiationProperty( const InstantiationProperty& _copy );
21
22        ~InstantiationProperty();
23
24        void setID( const char* _id );
25
26        void setValue( const char* _value );
27
28        char* toString ();
29
30        char* getID() const;
31
32        char* getValue() const;
33};
34
35#endif
36
Note: See TracBrowser for help on using the browser.