소스 검색

Add a default constructor so that you can create empty Security objects.

Useful when you just want to use the string encoder.


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4418 3789f03b-4d11-0410-bbf8-ca57d06f2519
tags/v1.1.90
Pierre Ossman 13 년 전
부모
커밋
e5fe070117
2개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 4
    0
      common/rfb/Security.cxx
  2. 1
    0
      common/rfb/Security.h

+ 4
- 0
common/rfb/Security.cxx 파일 보기

@@ -52,6 +52,10 @@ using namespace std;

static LogWriter vlog("Security");

Security::Security()
{
}

Security::Security(StringParameter &secTypes)
{
char *secTypesStr;

+ 1
- 0
common/rfb/Security.h 파일 보기

@@ -65,6 +65,7 @@ namespace rfb {
/*
* Create Security instance.
*/
Security();
Security(StringParameter &secTypes);

/*

Loading…
취소
저장