icaldirsetimpl.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*======================================================================
  2. FILE: icaldirsetimpl.h
  3. CREATOR: eric 21 Aug 2000
  4. (C) COPYRIGHT 2000, Eric Busboom <eric@softwarestudio.org>
  5. http://www.softwarestudio.org
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of either:
  8. The LGPL as published by the Free Software Foundation, version
  9. 2.1, available at: http://www.gnu.org/licenses/lgpl-2.1.html
  10. Or:
  11. The Mozilla Public License Version 1.0. You may obtain a copy of
  12. the License at http://www.mozilla.org/MPL/
  13. The Original Code is eric. The Initial Developer of the Original
  14. Code is Eric Busboom
  15. ======================================================================*/
  16. #ifndef ICALDIRSETIMPL_H
  17. #define ICALDIRSETIMPL_H
  18. #include "icalcluster.h"
  19. /* This definition is in its own file so it can be kept out of the
  20. main header file, but used by "friend classes" like icalset*/
  21. struct icaldirset_impl
  22. {
  23. icalset super; /**< parent class */
  24. char *dir; /**< directory containing ics files */
  25. icaldirset_options options; /**< copy of options passed to icalset_new() */
  26. icalcluster *cluster; /**< cluster containing data */
  27. icalgauge *gauge; /**< gauge for filtering out data */
  28. int first_component; /**< ??? */
  29. pvl_list directory; /**< ??? */
  30. pvl_elem directory_iterator;/**< ??? */
  31. };
  32. #endif