summaryrefslogtreecommitdiff
path: root/src/sound_asset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound_asset.h')
-rw-r--r--src/sound_asset.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sound_asset.h b/src/sound_asset.h
index c52a5436..e9fba11d 100644
--- a/src/sound_asset.h
+++ b/src/sound_asset.h
@@ -48,13 +48,13 @@ private:
/* no copy construction */
SoundAssetWriter (SoundAssetWriter const &);
SoundAssetWriter& operator= (SoundAssetWriter const &);
-
+
void write_current_frame ();
/* do this with an opaque pointer so we don't have to include
ASDCP headers
*/
-
+
struct ASDCPState;
boost::shared_ptr<ASDCPState> _state;
@@ -91,7 +91,7 @@ public:
void create (boost::function<boost::filesystem::path (Channel)> get_path);
boost::shared_ptr<SoundAssetWriter> start_write ();
-
+
bool equals (boost::shared_ptr<const Asset> other, EqualityOptions opt, boost::function<void (NoteType, std::string)> note) const;
boost::shared_ptr<const SoundFrame> get_frame (int n) const;
@@ -99,7 +99,7 @@ public:
void set_channels (int c) {
_channels = c;
}
-
+
int channels () const {
return _channels;
}
@@ -117,7 +117,7 @@ protected:
std::string asdcp_kind () const {
return "Sound";
}
-
+
private:
std::string key_type () const;
void construct (boost::function<boost::filesystem::path (Channel)> get_path);