diff options
| author | jhurst <jhurst@cinecert.com> | 2005-12-20 19:16:21 +0000 |
|---|---|---|
| committer | jhurst <> | 2005-12-20 19:16:21 +0000 |
| commit | c6900386fb66832781456838804ed7e28c535d63 (patch) | |
| tree | 3c387a66aec432229d1d987b9209e819bb80c5c3 /src/AS_DCP_MXF.cpp | |
| parent | d440dbd72e7b3395c589a72e391eb33b6d2109f4 (diff) | |
pre-release commit
Diffstat (limited to 'src/AS_DCP_MXF.cpp')
| -rwxr-xr-x | src/AS_DCP_MXF.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/AS_DCP_MXF.cpp b/src/AS_DCP_MXF.cpp index a7cb1e3..03b9b54 100755 --- a/src/AS_DCP_MXF.cpp +++ b/src/AS_DCP_MXF.cpp @@ -41,39 +41,6 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // misc subroutines -// helper class for XXX below -// -class PathSplitter -{ -public: - char* Root; - char* SubPath; - - PathSplitter(const std::string Str) - { - Root = strdup(Str.c_str()); - assert(Root); - - // sub-path exists? - SubPath = strchr(Root, OBJECT_PATH_SEPARATOR); - - if ( SubPath ) - { - while ( SubPath[1] == OBJECT_PATH_SEPARATOR ) - SubPath++; - - *SubPath++ = 0; - - if ( *SubPath == 0 ) - SubPath = 0; - } - } - - ~PathSplitter() { - free(Root); - } -}; - // void ASDCP::WriterInfoDump(const WriterInfo& Info, FILE* stream) |
