File: util.h

package info (click to toggle)
mp4v2 2.0.0~dfsg0-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,616 kB
  • ctags: 4,288
  • sloc: cpp: 32,148; sh: 10,293; ansic: 1,581; makefile: 21
file content (34 lines) | stat: -rw-r--r-- 1,108 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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