Overview
Class List
Class Hierarchy
Class Members
Functions & Constants
Defines
Header Files
comp_ids.h File Reference
Detailed Description
. Component Ids for UIMACPP trace facility
-----------------------------------------------------------------------------
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
-----------------------------------------------------------------------------
--------------------------------------------------------------------------
Define Documentation
#define UIMA_TRACE_STREAM |
( |
trace, |
|
|
x |
|
) |
|
|
|
Value: if (trace.isEnabled()) { \
std::stringstream _s; \
_s << x; _s.flush(); \
trace.dump( _s.str().c_str(), "" ); \
}
|
#define UIMA_TRACE_STREAM_ARG |
( |
trace, |
|
|
x, |
|
|
y |
|
) |
|
|
|
Value: if (trace.isEnabled()) { \
std::stringstream _s1; \
_s1 << x; _s1.flush(); \
std::stringstream _s2; \
_s2 << y; _s2.flush(); \
trace.dump( _s1.str().c_str(), _s2.str().c_str() ); \
}
|
|
first trace component id available to user
|
|
last trace component id available to user
|
#define UIMA_TRACE_COMPID_EXCEPTIONS ((uima::TyComponentId) ( 0 + UIMA_TRACE_COMPONENT_ID_FIRST)) |
|
#define UIMA_TRACE_COMPID_RESOURCE_MGR ((uima::TyComponentId) ( 2 + UIMA_TRACE_COMPONENT_ID_FIRST)) |
|
#define UIMA_TRACE_COMPID_ANNOTATOR_MGR ((uima::TyComponentId) ( 3 + UIMA_TRACE_COMPONENT_ID_FIRST)) |
|
#define UIMA_TRACE_COMPID_LOG_FACILITY ((uima::TyComponentId) ( 4 + UIMA_TRACE_COMPONENT_ID_FIRST)) |
|
#define UIMA_TRACE_COMPID_ANNOTATOR_DEFAULT ((uima::TyComponentId) (150 + UIMA_TRACE_COMPONENT_ID_FIRST)) |
|
#define UIMA_TRACE_COMPID_USER_FIRST ((uima::TyComponentId) (200 + UIMA_TRACE_COMPONENT_ID_FIRST)) |
|
#define UIMA_TRACE_COMPID_USER_LAST ((uima::TyComponentId) (254 + UIMA_TRACE_COMPONENT_ID_FIRST)) |
|
Generated on Mon Oct 1 16:04:12 2012 for UIMACPP API by
1.3.9.1