javamanager/javainstaller/javasifplugin/inc/resultsserver.h
branchRCL_3
changeset 83 26b2b12093af
parent 60 6c158198356e
equal deleted inserted replaced
77:7cee158cb8cd 83:26b2b12093af
     1 /*
     1 /*
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     2 * Copyright (c) 2009 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 &mComms;
    68         return &iComms;
    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();
       
    76 
    74 
    77 private:
    75 private:
    78     CommsServerEndpoint  mComms;
    76     int iRunning;   // 1 if running, 0 if not running
    79     COpaqueNamedParams  &mResults;
    77     CommsServerEndpoint  iComms;
    80     CComponentInfo      &mInfo;
    78     COpaqueNamedParams  &iResults;
       
    79     CComponentInfo      &iInfo;
    81 
    80 
    82     std::map<std::wstring, int> iIntPairs;
    81     std::map<std::wstring, int> iIntPairs;
    83     std::map<std::wstring, std::wstring> iStringPairs;
    82     std::map<std::wstring, std::wstring> iStringPairs;
    84 };
    83 };
    85 
    84