From c6900386fb66832781456838804ed7e28c535d63 Mon Sep 17 00:00:00 2001 From: jhurst Date: Tue, 20 Dec 2005 19:16:21 +0000 Subject: pre-release commit --- src/AS_DCP_MXF.cpp | 33 --------------------------------- 1 file changed, 33 deletions(-) (limited to 'src/AS_DCP_MXF.cpp') 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) -- cgit v1.2.3