traverso-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Traverso-commit] traverso/src/core CMakeLists.txt AudioClipGroup...


From: Remon Sijrier
Subject: [Traverso-commit] traverso/src/core CMakeLists.txt AudioClipGroup...
Date: Wed, 13 Feb 2008 13:36:09 +0000

CVSROOT:        /sources/traverso
Module name:    traverso
Changes by:     Remon Sijrier <r_sijrier>       08/02/13 13:36:09

Modified files:
        src/core       : CMakeLists.txt 
Added files:
        src/core       : AudioClipGroup.cpp AudioClipGroup.h 

Log message:
        * Added AudioClipGroup class. somewhat empty, but hey, it's 
'something', no?

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/traverso/src/core/CMakeLists.txt?cvsroot=traverso&r1=1.9&r2=1.10
http://cvs.savannah.gnu.org/viewcvs/traverso/src/core/AudioClipGroup.cpp?cvsroot=traverso&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/traverso/src/core/AudioClipGroup.h?cvsroot=traverso&rev=1.1

Patches:
Index: CMakeLists.txt
===================================================================
RCS file: /sources/traverso/traverso/src/core/CMakeLists.txt,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- CMakeLists.txt      21 Jan 2008 16:22:13 -0000      1.9
+++ CMakeLists.txt      13 Feb 2008 13:36:09 -0000      1.10
@@ -18,6 +18,7 @@
 ${CMAKE_SOURCE_DIR}/src/common/RingBuffer.cpp
 ${CMAKE_SOURCE_DIR}/src/common/Resampler.cpp
 AudioClip.cpp
+AudioClipGroup.cpp
 AudioClipManager.cpp
 AudioSource.cpp
 Command.cpp

Index: AudioClipGroup.cpp
===================================================================
RCS file: AudioClipGroup.cpp
diff -N AudioClipGroup.cpp
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ AudioClipGroup.cpp  13 Feb 2008 13:36:09 -0000      1.1
@@ -0,0 +1,35 @@
+/*
+Copyright (C) 2008 Remon Sijrier 
+
+This file is part of Traverso
+
+Traverso is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA.
+
+*/
+
+#include "AudioClipGroup.h"
+
+#include "AudioClip.h"
+
+#include "Debugger.h"
+
+AudioClipGroup::AudioClipGroup()
+{
+}
+
+AudioClipGroup::AudioClipGroup(QList< AudioClip * > clips)
+{
+       m_clips = clips;
+}

Index: AudioClipGroup.h
===================================================================
RCS file: AudioClipGroup.h
diff -N AudioClipGroup.h
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ AudioClipGroup.h    13 Feb 2008 13:36:09 -0000      1.1
@@ -0,0 +1,39 @@
+/*
+    Copyright (C) 2008 Remon Sijrier 
+ 
+    This file is part of Traverso
+ 
+    Traverso is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+ 
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+ 
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA.
+ 
+*/
+
+#ifndef AUDIO_CLIP_GROUP_H
+#define AUDIO_CLIP_GROUP_H
+
+#include "defines.h"
+
+class AudioClip;
+
+class AudioClipGroup
+{
+public:
+       AudioClipGroup();
+       AudioClipGroup(QList<AudioClip*> clips);
+       
+private:
+       QList<AudioClip*> m_clips;
+};
+
+#endif




reply via email to

[Prev in Thread] Current Thread [Next in Thread]