javamanager/javainstaller/javasifplugin/inc/resultsserver.h
branchRCL_3
changeset 60 6c158198356e
parent 19 04becd199f91
child 83 26b2b12093af
equal deleted inserted replaced
59:e5618cc85d74 60:6c158198356e
     1 /*
     1 /*
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "Eclipse Public License v1.0"
     5 * under the terms of the License "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
    63     int start();
    63     int start();
    64     int stop();
    64     int stop();
    65 
    65 
    66     CommsEndpoint* getComms()
    66     CommsEndpoint* getComms()
    67     {
    67     {
    68         return &iComms;
    68         return &mComms;
    69     }
    69     }
    70 
    70 
    71 private:
    71 private:
    72     void clearData();
    72     void clearData();
    73     void setComponentInfoL();
    73     void setComponentInfoL();
       
    74     void resetDefaultErrorValues();
       
    75     void setCommonErrorInfo();
    74 
    76 
    75 private:
    77 private:
    76     int iRunning;   // 1 if running, 0 if not running
    78     CommsServerEndpoint  mComms;
    77     CommsServerEndpoint  iComms;
    79     COpaqueNamedParams  &mResults;
    78     COpaqueNamedParams  &iResults;
    80     CComponentInfo      &mInfo;
    79     CComponentInfo      &iInfo;
       
    80 
    81 
    81     std::map<std::wstring, int> iIntPairs;
    82     std::map<std::wstring, int> iIntPairs;
    82     std::map<std::wstring, std::wstring> iStringPairs;
    83     std::map<std::wstring, std::wstring> iStringPairs;
    83 };
    84 };
    84 
    85