usb: getting string descriptors, minor improvements
[quarnos.git] / manes / ods / object.h
blob6ed815bb2166220f1afd7b6848dbfe7ffea21591
1 #ifndef _OBJECT_H_
2 #define _OBJECT_H_
4 namespace manes {
5 namespace ods {
6 /**
7 * @brief Object in ODS
9 * @details This is a base class for all objects spported by
10 * Object Distribution System.
12 class object {
13 protected:
14 public:
15 virtual ~object() {}
20 #endif