RTC Toolkit  0.1.0-alpha
oldbApiIf.hpp
Go to the documentation of this file.
1 
9 #ifndef RTCTK_COMPONENTFRAMEWORK_OLDBAPIIF_HPP
10 #define RTCTK_COMPONENTFRAMEWORK_OLDBAPIIF_HPP
11 
12 #include <utility>
13 #include <exception>
15 
16 namespace rtctk::componentFramework {
17 
18 class OldbApiIf : virtual public RepositoryIf {
19 public:
20  virtual ~OldbApiIf();
21 };
22 
23 } // namespace rtctk::componentFramework
24 
25 #endif // RTCTK_COMPONENTFRAMEWORK_OLDBAPIIF_HPP
rtctk::componentFramework
Definition: rtcComponent.hpp:17
repositoryIf.hpp
Header file for RepositoryIf and related base classes.
rtctk::componentFramework::OldbApiIf
Definition: oldbApiIf.hpp:18
rtctk::componentFramework::RepositoryIf
Abstract interface providing basic read and write facilities to a repository.
Definition: repositoryIf.hpp:28
rtctk::componentFramework::OldbApiIf::~OldbApiIf
virtual ~OldbApiIf()
Definition: oldbApiIf.cpp:13