29 lines
927 B
C
29 lines
927 B
C
/** \file
|
|
* Legacy header for enum-related implementations and iterators.
|
|
*
|
|
* This exists for backward compatibility only. Include specific headers
|
|
* instead.
|
|
*/
|
|
/*
|
|
* Copyright © 2000 Sofus Mortensen
|
|
*
|
|
* This material is provided "as is", with absolutely no warranty
|
|
* expressed or implied. Any use is at your own risk. Permission to
|
|
* use or copy this software for any purpose is hereby granted without
|
|
* fee, provided the above notices are retained on all copies.
|
|
* Permission to modify the code and to distribute modified code is
|
|
* granted, provided the above notices are retained, and a notice that
|
|
* the code was modified is included with the above copyright notice.
|
|
*
|
|
* This header is part of Comet version 2.
|
|
* https://github.com/alamaison/comet
|
|
*/
|
|
|
|
#ifndef COMET_ENUM_H
|
|
#define COMET_ENUM_H
|
|
|
|
#include <comet/enum_common.h>
|
|
#include <comet/stl_enum.h>
|
|
#include <comet/variant_iterator.h>
|
|
|
|
#endif
|