1234567891011121314151617 |
- #pragma once
- #include "../common/comm.h"
- struct Point
- {
- float x;
- float y;
- };
- class CWorkAreaManager
- {
- public:
- static CWorkAreaManager& GetInstance();
- void LoadCSV(const char* file);
- Point& GetPoint(WorkArea area, int32_t no);
- private:
- Point _area[WorkArea::Area_ALL][50];
- };
|