aboutsummaryrefslogtreecommitdiff
path: root/vcal.cpp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-02-19 02:31:35 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-19 10:18:31 +0100
commit6f3c772939463c97a4a8a8371db42b8f4b181c68 (patch)
treef8010e9e49696505e22cd0dff3bd84089392a240 /vcal.cpp
parentI somehow got stuff to bulid, now it just doesn't link. (diff)
downloadcalp-6f3c772939463c97a4a8a8371db42b8f4b181c68.tar.gz
calp-6f3c772939463c97a4a8a8371db42b8f4b181c68.tar.xz
No idea, to tired.
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 << '_';