13aff2d1de59972684bf2ab798351be5544158239San Mehat/*
23aff2d1de59972684bf2ab798351be5544158239San Mehat * Copyright (C) 2008 The Android Open Source Project
33aff2d1de59972684bf2ab798351be5544158239San Mehat *
43aff2d1de59972684bf2ab798351be5544158239San Mehat * Licensed under the Apache License, Version 2.0 (the "License");
53aff2d1de59972684bf2ab798351be5544158239San Mehat * you may not use this file except in compliance with the License.
63aff2d1de59972684bf2ab798351be5544158239San Mehat * You may obtain a copy of the License at
73aff2d1de59972684bf2ab798351be5544158239San Mehat *
83aff2d1de59972684bf2ab798351be5544158239San Mehat *      http://www.apache.org/licenses/LICENSE-2.0
93aff2d1de59972684bf2ab798351be5544158239San Mehat *
103aff2d1de59972684bf2ab798351be5544158239San Mehat * Unless required by applicable law or agreed to in writing, software
113aff2d1de59972684bf2ab798351be5544158239San Mehat * distributed under the License is distributed on an "AS IS" BASIS,
123aff2d1de59972684bf2ab798351be5544158239San Mehat * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
133aff2d1de59972684bf2ab798351be5544158239San Mehat * See the License for the specific language governing permissions and
143aff2d1de59972684bf2ab798351be5544158239San Mehat * limitations under the License.
153aff2d1de59972684bf2ab798351be5544158239San Mehat */
163aff2d1de59972684bf2ab798351be5544158239San Mehat
173aff2d1de59972684bf2ab798351be5544158239San Mehat#define LOG_TAG "SupplicantScanResultsEvent"
183aff2d1de59972684bf2ab798351be5544158239San Mehat#include <cutils/log.h>
193aff2d1de59972684bf2ab798351be5544158239San Mehat
203aff2d1de59972684bf2ab798351be5544158239San Mehat#include "SupplicantScanResultsEvent.h"
213aff2d1de59972684bf2ab798351be5544158239San Mehat
223aff2d1de59972684bf2ab798351be5544158239San MehatSupplicantScanResultsEvent::SupplicantScanResultsEvent(int level, char *event,
233aff2d1de59972684bf2ab798351be5544158239San Mehat                                                       size_t len) :
243aff2d1de59972684bf2ab798351be5544158239San Mehat                            SupplicantEvent(SupplicantEvent::EVENT_SCAN_RESULTS,
253aff2d1de59972684bf2ab798351be5544158239San Mehat                                            level) {
263aff2d1de59972684bf2ab798351be5544158239San Mehat}
273aff2d1de59972684bf2ab798351be5544158239San Mehat
283aff2d1de59972684bf2ab798351be5544158239San MehatSupplicantScanResultsEvent::SupplicantScanResultsEvent() :
293aff2d1de59972684bf2ab798351be5544158239San Mehat                            SupplicantEvent(SupplicantEvent::EVENT_SCAN_RESULTS, -1) {
303aff2d1de59972684bf2ab798351be5544158239San Mehat}
313aff2d1de59972684bf2ab798351be5544158239San Mehat
323aff2d1de59972684bf2ab798351be5544158239San MehatSupplicantScanResultsEvent::~SupplicantScanResultsEvent() {
333aff2d1de59972684bf2ab798351be5544158239San Mehat}
343aff2d1de59972684bf2ab798351be5544158239San Mehat
35