123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /* Index_def.h
- *
- * Copyright (C) 2005-2018 David Weenink
- *
- * This code is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or (at
- * your option) any later version.
- *
- * This code is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this work. If not, see <http://www.gnu.org/licenses/>.
- */
- /*
- djmw 20050724
- djmw 20060529 Added object version numbers.
- */
- #define ooSTRUCT Index
- oo_DEFINE_CLASS (Index, Daata)
- oo_OBJECT (Ordered, 0, classes)
- oo_INTEGER (numberOfItems)
- oo_INTVEC (classIndex, numberOfItems)
- #if oo_DECLARING
- void v_info ()
- override;
- #endif
- oo_END_CLASS(Index)
- #undef ooSTRUCT
- #define ooSTRUCT StringsIndex
- oo_DEFINE_CLASS (StringsIndex, Index)
- oo_END_CLASS(StringsIndex)
- #undef ooSTRUCT
- /* End of file Index_def.h */
|