usb: getting string descriptors, minor improvements
[quarnos.git] / manes / ods / obj_ref.h
blob4573f85251348a185c80062d2fe6823fa9a6b065
1 #ifndef _OBJ_REF_H_
2 #define _OBJ_REF_H_
4 #include "object.h"
5 #include "obj_val.h"
7 #include "libs/pointer.h"
9 namespace manes {
10 namespace ods {
11 /**
12 * @brief Object marshalled by reference
14 * @details This is a base class for all classes whose instances
15 * may be tranported by reference.
17 class obj_ref : public object {
18 public:
19 virtual ~obj_ref(){}
24 #endif