Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.tcf.examples.daytime.agent/tcf/config.h')
-rw-r--r--examples/org.eclipse.tcf.examples.daytime.agent/tcf/config.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/examples/org.eclipse.tcf.examples.daytime.agent/tcf/config.h b/examples/org.eclipse.tcf.examples.daytime.agent/tcf/config.h
deleted file mode 100644
index b4ba0cb72..000000000
--- a/examples/org.eclipse.tcf.examples.daytime.agent/tcf/config.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2008 Wind River Systems, Inc. and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * and Eclipse Distribution License v1.0 which accompany this distribution.
- * The Eclipse Public License is available at
- * http://www.eclipse.org/legal/epl-v10.html
- * and the Eclipse Distribution License is available at
- * http://www.eclipse.org/org/documents/edl-v10.php.
- * You may elect to redistribute this code under either of these licenses.
- *
- * Contributors:
- * Wind River Systems - initial API and implementation
- *******************************************************************************/
-
-/*
- * This file contains "define" statements that control agent configuration.
- * SERVICE_* definitions control which service implementations are included into the agent.
- *
- * This is example agent configuration. It includes only few standard services,
- * and one example service: Day Time.
- */
-
-#ifndef D_config
-#define D_config
-
-#include <tcf/framework/mdep.h>
-
-#if defined(WIN32) || defined(__CYGWIN__)
-# define TARGET_UNIX 0
-#elif defined(_WRS_KERNEL)
-# define TARGET_UNIX 0
-#else
-# define TARGET_UNIX 1
-#endif
-
-#define SERVICE_FileSystem 1
-#define SERVICE_SysMonitor TARGET_UNIX
-
-#define ENABLE_Trace 1
-#define ENABLE_Discovery 1
-
-
-#endif /* D_config */

Back to the top