add skeleton for i18n support
[ardour.git] / libs / evoral / src / Event.cpp
index 930a18e77b045e11fbdabb6bf4dae9b1421557ea..ebcac57a35bc35450ae72d447398e4c41e7b28ed 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of Evoral.
- * Copyright (C) 2008 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008 David Robillard <http://drobilla.net>
  * Copyright (C) 2000-2008 Paul Davis
  *
  * Evoral is free software; you can redistribute it and/or modify it under the
@@ -90,6 +90,20 @@ Event<Timestamp>::~Event() {
        }
 }
 
+template<typename Timestamp>
+void
+Event<Timestamp>::set_time (Timestamp t)
+{
+       _nominal_time = t;
+}
+
+template<typename Timestamp>
+void
+Event<Timestamp>::set_original_time (Timestamp t)
+{
+       _original_time = t;
+}
+       
 #endif // EVORAL_EVENT_ALLOC
 
 template class Event<Evoral::MusicalTime>;