summaryrefslogtreecommitdiff
path: root/orkbasecxx/PartyFilter.h
diff options
context:
space:
mode:
authorGerald Begumisa <ben_g@users.sourceforge.net>2007-12-20 02:53:14 +0000
committerGerald Begumisa <ben_g@users.sourceforge.net>2007-12-20 02:53:14 +0000
commit0e9d7cb80716bd22e0e5234af0a7d3ba4d5a3091 (patch)
treec37832192a74edd2c0805cfd6b6e33d054ef1e23 /orkbasecxx/PartyFilter.h
parentb4f73de93002e79ccdf6ee62cd91a533c0f7ba1f (diff)
Added a new feature that allows orkaudio to filter recordings by the remote or local party. If the configuration parameter <PartyFilter> is filled with a CSV list of numbers or ranges of numbers such as <PartyFilter>300,450-490,4000-6000</PartyFilter>, orkaudio will only produce recordings for cases where the remote or local parties match a specified number or fall within the specified number range (for the case where a range has been specified).
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@516 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkbasecxx/PartyFilter.h')
-rw-r--r--orkbasecxx/PartyFilter.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/orkbasecxx/PartyFilter.h b/orkbasecxx/PartyFilter.h
new file mode 100644
index 0000000..11d2aaa
--- /dev/null
+++ b/orkbasecxx/PartyFilter.h
@@ -0,0 +1,19 @@
+/*
+ * Oreka -- A media capture and retrieval platform
+ *
+ * Copyright (C) 2005, orecx LLC
+ *
+ * http://www.orecx.com
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License.
+ * Please refer to http://www.gnu.org/copyleft/gpl.html
+ *
+ */
+#ifndef __PARTYFILTER_H__
+#define __PARTYFILTER_H__ 1
+
+bool DLL_IMPORT_EXPORT_ORKBASE PartyFilterActive(void);
+bool DLL_IMPORT_EXPORT_ORKBASE PartyFilterMatches(CStdString& party);
+
+#endif