#ifndef PRJXRAY_LIB_DATABASE_H #define PRJXRAY_LIB_DATABASE_H #include #include #include #include namespace prjxray { class Database { public: Database(const std::string& path) : db_path_(path) {} std::vector> segbits() const; private: std::string db_path_; }; } // namespace prjxray #endif // PRJXRAY_LIB_DATABASE_H