Vector.h
上传用户:bjzhifu888
上传日期:2013-01-22
资源大小:136k
文件大小:1k
源码类别:

STL

开发平台:

Visual C++

  1. // Vector.h: interface for the CVector class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_VECTOR_H__D5C891C6_5130_4440_BFC2_1E94A254D4FC__INCLUDED_)
  5. #define AFX_VECTOR_H__D5C891C6_5130_4440_BFC2_1E94A254D4FC__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CVector  
  10. {
  11. public:
  12. float z;
  13. float y;
  14. float x;
  15. CVector();
  16. virtual ~CVector();
  17. };
  18. #endif // !defined(AFX_VECTOR_H__D5C891C6_5130_4440_BFC2_1E94A254D4FC__INCLUDED_)