]> git.sesse.net Git - casparcg/blobdiff - core/frame/frame_visitor.h
set svn:eol-style native on .h and .cpp files
[casparcg] / core / frame / frame_visitor.h
index c952a23870cd70df263298e2e9f169bf599fdfbd..ff11de1535060f9bc4ddc288b2b19a20035c88d1 100644 (file)
@@ -1,47 +1,47 @@
-/*\r
-* Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
-*\r
-* This file is part of CasparCG (www.casparcg.com).\r
-*\r
-* CasparCG is free software: you can redistribute it and/or modify\r
-* it under the terms of the GNU General Public License as published by\r
-* the Free Software Foundation, either version 3 of the License, or\r
-* (at your option) any later version.\r
-*\r
-* CasparCG is distributed in the hope that it will be useful,\r
-* but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-* GNU General Public License for more details.\r
-*\r
-* You should have received a copy of the GNU General Public License\r
-* along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
-*\r
-* Author: Robert Nagy, ronag89@gmail.com\r
-*/\r
-\r
-#pragma once\r
-\r
-namespace caspar { namespace core {\r
-       \r
-class frame_visitor\r
-{\r
-       frame_visitor(const frame_visitor&);\r
-       frame_visitor& operator=(const frame_visitor&);\r
-public:\r
-       // Static Members\r
-\r
-       // Constructors\r
-\r
-       frame_visitor(){}\r
-       virtual ~frame_visitor(){}\r
-\r
-       // Methods\r
-\r
-       virtual void push(const struct frame_transform& transform) = 0;\r
-       virtual void visit(const class const_frame& frame) = 0;\r
-       virtual void pop() = 0;\r
-\r
-       // Properties\r
-};\r
-\r
+/*
+* Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
+*
+* This file is part of CasparCG (www.casparcg.com).
+*
+* CasparCG 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 3 of the License, or
+* (at your option) any later version.
+*
+* CasparCG 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 CasparCG. If not, see <http://www.gnu.org/licenses/>.
+*
+* Author: Robert Nagy, ronag89@gmail.com
+*/
+
+#pragma once
+
+namespace caspar { namespace core {
+       
+class frame_visitor
+{
+       frame_visitor(const frame_visitor&);
+       frame_visitor& operator=(const frame_visitor&);
+public:
+       // Static Members
+
+       // Constructors
+
+       frame_visitor(){}
+       virtual ~frame_visitor(){}
+
+       // Methods
+
+       virtual void push(const struct frame_transform& transform) = 0;
+       virtual void visit(const class const_frame& frame) = 0;
+       virtual void pop() = 0;
+
+       // Properties
+};
+
 }}
\ No newline at end of file