first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / octopi / library / synchronic / bundle_list.h
1 #ifndef BUNDLE_LIST_CLASS
2 #define BUNDLE_LIST_CLASS
3
4 /*****************************************************************************\
5 *                                                                             *
6 *  Name   : bundle_list                                                       *
7 *  Author : Chris Koeritz                                                     *
8 *                                                                             *
9 *******************************************************************************
10 * Copyright (c) 2002-$now By Author.  This program is free software; you can  *
11 * redistribute it and/or modify it under the terms of the GNU General Public  *
12 * License as published by the Free Software Foundation; either version 2 of   *
13 * the License or (at your option) any later version.  This is online at:      *
14 *     http://www.fsf.org/copyleft/gpl.html                                    *
15 * Please send any updates to: fred@gruntose.com                               *
16 \*****************************************************************************/
17
18 #include "synchronizable.h"
19
20 #include <structures/amorph.h>
21
22 namespace synchronic {
23
24 //! Provides a structure for managing a collection of synchronizables.
25
26 class bundle_list : public structures::amorph<synchronizable> {}; 
27
28 } //namespace.
29
30 #endif
31