aboutsummaryrefslogtreecommitdiffstats
path: root/meowpp/gra/BitmapDescript.h
diff options
context:
space:
mode:
authorcathook <b01902109@csie.ntu.edu.tw>2014-09-24 13:37:42 +0800
committercathook <b01902109@csie.ntu.edu.tw>2014-09-29 16:55:57 +0800
commit8b76fbb408f8eedab24195655c45c891af01eaab (patch)
tree414d7fc87885cb77e181a3ab99e334b837621036 /meowpp/gra/BitmapDescript.h
parentef9af0d577c3a6b5d11fdeed7a9149d09973171b (diff)
downloadmeow-8b76fbb408f8eedab24195655c45c891af01eaab.tar.gz
meow-8b76fbb408f8eedab24195655c45c891af01eaab.tar.zst
meow-8b76fbb408f8eedab24195655c45c891af01eaab.zip
Big change, detail see README.
Diffstat (limited to 'meowpp/gra/BitmapDescript.h')
-rw-r--r--meowpp/gra/BitmapDescript.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/meowpp/gra/BitmapDescript.h b/meowpp/gra/BitmapDescript.h
deleted file mode 100644
index fe659f6..0000000
--- a/meowpp/gra/BitmapDescript.h
+++ /dev/null
@@ -1,51 +0,0 @@
-#ifndef BitmapDescript_H__
-#define BitmapDescript_H__
-
-#include "../Self.h"
-
-#include "../oo/ObjBase.h"
-
-
-
-class FeaturePointDescript: public ObjBase {
-private:
- struct Myself {
- double ratioL_;
- size_t wSize_;
- size_t cNumber_;
- };
- Self<Myself const> self;
-public:
- FeaturePointDescript() {
- }
-
- ~FeaturePointDescript() {
- }
-
-
- bool write(FILE* f, bool bin, unsigned int fg) const {
- return false;
- }
-
- bool read(FILE* f, bool bin, unsigned int fg) {
- return false;
- }
-
- ObjBase* create() const {
- return new FeaturePointDescript();
- }
-
- ObjBase* copyFrom(ObjBase const& b) {
- return &(copyFrom(*(FeaturePointDescript const*)b));
- }
-
- char const* ctype() const {
- return typeid(*this).name();
- }
-
- std::string type() const {
- return std::string(ctype());
- }
-};
-
-#endif // BitmapDescript_H__