aboutsummaryrefslogtreecommitdiff
path: root/vcal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vcal.cpp')
-rw-r--r--vcal.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/vcal.cpp b/vcal.cpp
index 8f49b7d8..8180cf80 100644
--- a/vcal.cpp
+++ b/vcal.cpp
@@ -3,6 +3,13 @@
#include <iostream>
+vcomponent::vcomponent(
+ const std::string& type,
+ const std::string& filename)
+ : type(type)
+ , filename(filename)
+{ };
+
std::ostream& operator<<(std::ostream& o, vcomponent* self) {
for (int i = 0; i < 40; i++) o << '_';