From: Gunnar Beutner Date: Mon, 4 Jun 2012 07:21:33 +0000 (+0200) Subject: Fixed merge conflicts. X-Git-Tag: v0.0.1~450 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c3e57c858b269b34dda6c417a6822846197c250;p=icinga2 Fixed merge conflicts. --- diff --git a/components/configfile/configfile.vcxproj b/components/configfile/configfile.vcxproj index 698e3a238..74e474d15 100644 --- a/components/configfile/configfile.vcxproj +++ b/components/configfile/configfile.vcxproj @@ -11,20 +11,11 @@ - - - - - - - - - {E58F1DA7-B723-412B-B2B7-7FF58E2A944E} diff --git a/dyn/configcontext.h b/dyn/configcontext.h index 4f29b9794..026dcaf7c 100644 --- a/dyn/configcontext.h +++ b/dyn/configcontext.h @@ -23,7 +23,7 @@ namespace icinga { -class ConfigContext +class I2_DYN_API ConfigContext { public: ConfigContext(istream *input = &cin); diff --git a/dyn/configobject.h b/dyn/configobject.h new file mode 100644 index 000000000..96bb6d00b --- /dev/null +++ b/dyn/configobject.h @@ -0,0 +1,35 @@ +/****************************************************************************** + * Icinga 2 * + * Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) * + * * + * This program 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 2 * + * of the License, or (at your option) any later version. * + * * + * This program 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 this program; if not, write to the Free Software Foundation * + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * + ******************************************************************************/ + +#ifndef CONFIGOBJECT_H +#define CONFIGOBJECT_H + +namespace icinga +{ + +class I2_DYN_API ConfigObject : public Object +{ +public: +private: + DynamicObject::WeakPtr m_DynamicObject; +}; + +} + +#endif /* CONFIGOBJECT_H */ \ No newline at end of file diff --git a/dyn/dyn.vcxproj b/dyn/dyn.vcxproj index 9ac948ab4..010bdee5a 100644 --- a/dyn/dyn.vcxproj +++ b/dyn/dyn.vcxproj @@ -11,6 +11,8 @@ + + @@ -18,11 +20,30 @@ + + + + + + config_lexer.cc + config_lexer.cc + win_flex "%(FullPath)" + win_flex "%(FullPath)" + Document + + + win_bison -d "%(FullPath)" + config_parser.cc config_parser.h + win_bison -d "%(FullPath)" + config_parser.cc config_parser.h + Document + + {B26AFFA6-2BDF-42E6-A224-2591FFD9BFB7} Win32Proj