GME  13
Revision.h
Go to the documentation of this file.
00001 
00024 #pragma once
00025 
00026 #include "svn_opt.h"
00027 
00028 class Revision
00029 {
00030 private:
00031         svn_opt_revision_t m_revision;
00032 
00033 public:
00034         static const svn_opt_revision_kind START;
00035         static const svn_opt_revision_kind HEAD;
00036 
00037         Revision();
00038         Revision( bool p_head /*= false*/, bool p_one /*= false*/);
00039         Revision( const svn_opt_revision_kind p_kind);
00040         ~Revision();
00041 
00042         const svn_opt_revision_t *revision() const;
00043 
00044 };