VectorBase.h 550 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * NICE-Core - efficient algebra and computer vision methods
  3. * - libbasicvector - A simple vector library
  4. * See file License for license information.
  5. */
  6. #ifndef _EVECTORBASE_H_
  7. #define _EVECTORBASE_H_
  8. #include <string>
  9. #include <sstream>
  10. #include <stdexcept>
  11. namespace NICE {
  12. /**
  13. * @brief Base class for VectorT
  14. * @author Ferid Bajramovic
  15. */
  16. class VectorBase
  17. {
  18. public:
  19. //! Mode for constructor with external storage support.
  20. enum Mode{copy, external};
  21. };
  22. }
  23. #ifdef __GNUC__
  24. //#include "core/vector/VectorBase.tcc"
  25. #endif
  26. #endif