|
Sequence.hGo to the documentation of this file.00001 // -*- mode: C++ -*- 00002 // 00003 // Copyright (C) 2006 Christian Holm Christensen <cholm@nbi.dk> 00004 // 00005 // This library is free software; you can redistribute it and/or 00006 // modify it under the terms of the GNU Lesser General Public License 00007 // as published by the Free Software Foundation; either version 2.1 00008 // of the License, or (at your option) any later version. 00009 // 00010 // This library is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 // Lesser General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU Lesser General Public 00016 // License along with this library; if not, write to the Free 00017 // Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 00018 // 02111-1307 USA 00019 // 00025 #ifndef RCUCONF_SEQUENCE_H 00026 #define RCUCONF_SEQUENCE_H 00027 00028 namespace RcuDb 00029 { 00030 class Row; 00031 class Server; 00032 class Sql; 00033 } 00034 namespace RcuConf 00035 { 00036 00041 namespace Sequence 00042 { 00046 bool Create(RcuDb::Server& server); 00050 bool Drop(RcuDb::Server& server); 00054 int Increment(RcuDb::Server& server); 00055 }; 00056 } 00057 00058 #endif 00059 // 00060 // EOF 00061 //
|