diff options
Diffstat (limited to 'debian/mp4v2/mp4v2-2.0.0~dfsg0/libutil/util.h')
-rw-r--r-- | debian/mp4v2/mp4v2-2.0.0~dfsg0/libutil/util.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/debian/mp4v2/mp4v2-2.0.0~dfsg0/libutil/util.h b/debian/mp4v2/mp4v2-2.0.0~dfsg0/libutil/util.h new file mode 100644 index 00000000..2ea72465 --- /dev/null +++ b/debian/mp4v2/mp4v2-2.0.0~dfsg0/libutil/util.h @@ -0,0 +1,34 @@ +#ifndef MP4V2_UTIL_UTIL_H +#define MP4V2_UTIL_UTIL_H + +/////////////////////////////////////////////////////////////////////////////// + +#include "src/src.h" + +/////////////////////////////////////////////////////////////////////////////// + +/// @namespace mp4v2::util (private) Command-line utility support. +/// <b>WARNING: THIS IS A PRIVATE NAMESPACE. NOT FOR PUBLIC CONSUMPTION.</b> +/// +/// This namespace is used for command-line utilities. Some symbols from this +/// namespace are exported from libmp4v2 in order to support new functionality +/// which may or may not make it into some form of public API, at which time +/// it will be moved out of this namespace. +/// +namespace mp4v2 { namespace util { + using namespace std; + using namespace mp4v2::impl; +}} // namespace mp4v2::util + +/////////////////////////////////////////////////////////////////////////////// + +#include "Database.h" +#include "Timecode.h" +#include "TrackModifier.h" +#include "Utility.h" +#include "crc.h" +#include "other.h" + +/////////////////////////////////////////////////////////////////////////////// + +#endif // MP4V2_UTIL_UTIL_H |