12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #ifndef CERES_PUBLIC_CONTEXT_H_
- #define CERES_PUBLIC_CONTEXT_H_
- #include "ceres/internal/export.h"
- namespace ceres {
- class CERES_EXPORT Context {
- public:
- Context();
- Context(const Context&) = delete;
- void operator=(const Context&) = delete;
- virtual ~Context();
-
- static Context* Create();
- };
- }
- #endif
|